EN FR
EN FR


Section: Software and Platforms

Alignment API

Exmo's work can be implemented in software: in particular, we have developed an api for expressing ontology alignment (§ 5.1 ) and a library of ontology distances and similarities OntoSim (§ 5.2 ).

We have designed a format for expressing alignments in a uniform way [1] . The goal of this format is to be able to share available alignments on the web. It should help systems using alignments, e.g., mediators, translators, to take advantage of any alignment algorithm and it will help alignment algorithms to be used in many different tasks. This format is expressed in rdf , so it is freely extensible, and has been defined by a dtd (Document Type Description for rdf/xml ), an owl ontology and an rdf Schema.

The api itself [1] is a Java description of tools for accessing the common format. It defines five main interfaces (OntologyNetwork, Alignment, Cell, Relation and Evaluator) and proposes the following services:

  • Storing, finding, and sharing alignments;

  • Piping matching algorithms (improving an existing alignment);

  • Manipulating alignments (thresholding and hardening);

  • Generating processing output (transformations, axioms, rules);

  • Comparing alignments.

We provide an implementation for this api which can be used for producing transformations, rules or bridge axioms independently from the algorithm which produced the alignment. The proposed implementation features:

  • a base implementation of the interfaces with all useful facilities;

  • a library of sample matchers;

  • a library of renderers (xslt , swrl , owl , c-owl , sekt mapping language, sparql );

  • a library of evaluators (various generalisation of precision/recall, precision/recall graphs);

  • a flexible test generation framework which allows for generating evaluation datasets;

  • a library of wrapper for several ontology api ;

  • a parser for the format.

To instanciate the api , it is sufficient to refine the base implementation by implementing the align() method. Doing so, the new implementation will benefit from all the services already implemented in the base implementation.

We have developed on top of the Alignment api an Alignment server that can be used by remote clients for matching ontologies and for storing and sharing alignments. It is developed as an extensible platform which allows to plug-in new interfaces. The Alignment server can be accessed through html , web service (soap and rest ) and agent communication interfaces.

The Alignment api is used in the Ontology Alignment Evaluation Initiative data and result processing (§ 6.1.1 ). It is also used by more than 30 other teams worldwide.

The Alignment api is freely available since december 2003, under the lgpl licence, at http://alignapi.gforge.inria.fr .